home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / TCL1 / CEDITOR_ / CEDITORP.C < prev    next >
Text File  |  1992-01-12  |  799b  |  38 lines

  1. /****
  2.  * CEditorPane.c
  3.  *
  4.  *    Methods for a text editing pane.
  5.  *
  6.  ****/
  7.  
  8. #include "CEditorPane.h"
  9. #include <Commands.h>
  10. #include <CDocument.h>
  11. #include <CBartender.h>
  12. #include <Constants.h>  /* Altered by TCL Demo Weaver 1.0 (2/21/90) */
  13.  
  14. extern    CBartender    *gBartender;
  15.  
  16. void CEditorPane::IEditorPane(CView *anEnclosure, CBureaucrat *aSupervisor)
  17.  
  18. {
  19.     Rect    margin;
  20.  
  21.     CEditor::IEditor(anEnclosure, aSupervisor, 1, 1, 0, 0,
  22.                         sizELASTIC, sizELASTIC, 4 );
  23.     FitToEnclosure(TRUE, TRUE);
  24.  
  25.         /**
  26.          **    Give the edit pane a little margin.
  27.          **    Each element of the margin rectangle
  28.          **    specifies by how much to change that
  29.          **    edge. Positive values are down and to
  30.          **    right, negative values are up and to
  31.          **    the left.
  32.          **
  33.          **/
  34.  
  35.     SetRect(&margin, 4, 4, 0, 0);
  36.     ChangeSize(&margin, FALSE);
  37. }
  38.